home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Suzy B Software 2
/
Suzy B Software CD-ROM 2 (1994).iso
/
extras
/
programm
/
gemfsc19
/
gemfsc19.lzh
/
GEMFBIND
/
VDSPCUR.S
< prev
next >
Wrap
Text File
|
1993-03-16
|
926b
|
36 lines
;*========================================================================
;* VDIFAST Public Domain VDI bindings.
;*========================================================================
;*-----------------------------------------------------------------------
;* Place graphic cursor at location.
;*-----------------------------------------------------------------------
globl _v_dspcur
_v_dspcur:
; .cargs #8,handle.w,x.w,y.w
handle = 8
x = 10
y = 12
link a6,#0
; VContrl #5,#18,#1
move.w handle(a6),-(sp) ; contrl[6]
move.w #18,-(sp) ; contrl[5]
subq.l #2,sp ; contrl[4]
clr.l -(sp) ; contrl[3,2]
move.w #1,-(sp) ; contrl[1]
move.w #5,-(sp) ; contrl[0]
subq.l #8,sp ;* -> ptsout, intout
pea x(a6) ;* -> ptsin
subq.l #4,sp ;* -> intin
pea 16(sp) ;* -> contrl
jmp vdicall
end